@charset "utf-8";

body {
    color: #333;
    font-size: 16px;
    font-family: Microsoft YaHei, Simsun, SimHei, Arial;
    -webkit-text-size-adjust: none;
}

body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
textarea,
ul {
    padding: 0;
    margin: 0;
}

li,
ol,
ul {
    list-style: none;
}

img {
    border: none;
    border: 0;
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #333;
}

a:focus {
    outline: none;
    -moz-outline: none;
}

a:hover {
    color: #bd1a2d;
    transition: all .3s;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 0.9375em;
}

input:focus,
textarea:focus {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #cccccc;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


/*layout*/
.common-row:after,
.common-row:before {
    content: '';
    display: block;
    clear: both;
}

.common-col-space {
    margin: -15px;
}

.common-col-space>* {
    float: left;
}

.common-col-space .grid {
    padding: 15px;
}

.container.pt {
    padding-top: 30px;
}

.container.pb {
    padding-bottom: 30px;
}

.mb {
    margin-bottom: 30px;
}



/*common*/
.clearfix {
    *zoom: 1
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: ""
}

.clearfix:after {
    clear: both
}

.clear {
    clear: both;
}

.transition a {
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.imgScale a img {
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.imgScale a:hover img {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.hover-opacity:hover {
    filter: alpha(opacity=85);
    -moz-opacity: 0.85;
    opacity: 0.85;
}

.text-nowrap,
.text-nowrap p,
.text-nowrap a,
.text-nowrap span,
.text-nowrap font {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

/*滚动条自定义样式*/
.ScrollStyle {
    overflow: auto !important;
}

.ScrollStyle::-webkit-scrollbar {
    box-sizing: border-box;
    width: 9px;
    height: 9px;
    background: #eee;
}

.ScrollStyle::-webkit-scrollbar-button {
    width: 9px;
    height: 0px;
}

.ScrollStyle::-webkit-scrollbar-button:vertical:start {
    background-position: 0 0;
}

.ScrollStyle::-webkit-scrollbar-button:vertical:start:hover {
    background-position: -10px 0;
}

.ScrollStyle::-webkit-scrollbar-button:vertical:start:active {
    background-position: -20px 0;
}

.ScrollStyle::-webkit-scrollbar-button:vertical:end {
    background-position: -30px 0;
}

.ScrollStyle::-webkit-scrollbar-button:vertical:end:hover {
    background-position: -40px 0;
}

.ScrollStyle::-webkit-scrollbar-button:vertical:end:active {
    background-position: -50px 0;
}

.ScrollStyle::-webkit-scrollbar-button:horizontal:start {
    background-position: 0 -11px;
}

.ScrollStyle::-webkit-scrollbar-button:horizontal:start:hover {
    background-position: -10px -11px;
}

.ScrollStyle::-webkit-scrollbar-button:horizontal:start:active {
    background-position: -19px -11px;
}

.ScrollStyle::-webkit-scrollbar-button:horizontal:end {
    background-position: -30px -11px;
}

.ScrollStyle::-webkit-scrollbar-button:horizontal:end:hover {
    background-position: -40px -11px;
}

.ScrollStyle::-webkit-scrollbar-button:horizontal:end:active {
    background-position: -50px -11px;
}

.ScrollStyle::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, .15);
}

.ScrollStyle::-webkit-scrollbar-thumb {
    border: 1px solid rgba(0, 0, 0, .21);
    background-color: #a7793d;
    border-radius: 5px;
}

.ScrollStyle::-webkit-scrollbar-thumb:hover {
    border: 1px solid rgba(0, 0, 0, .21);
    background-color: #a7793d;
}

.ScrollStyle::-webkit-scrollbar-thumb:active {
    background: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f4f4f4));
}

.ScrollStyle::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}